0648a578b47561d879766a0077bb989d8db44700,zul/src/com/potix/zul/html/Datebox.java,Datebox,setValue,#Date#,133
Before Change
*/
public void setValue(Date value) throws WrongValueException {
validate(value);
if (setRawValue(value))
smartUpdate("value", getText());
}
public void setFormat(String format) throws WrongValueException {
After Change
*/
public void setValue(Date value) throws WrongValueException {
validate(value);
setRawValue(value);
}
public void setFormat(String format) throws WrongValueException {